home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
rexx
/
dt_songend.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-04-15
|
217b
|
19 lines
/* DeliTracker - toggles songend */
address 'DELITRACKER'
options results
status G end
if result == "no" then do
SongEnd yes
say "Songend is now on..."
end
else do
SongEnd no
say "Songend is now off..."
end